home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 033a / rekey20.zip / REKEY.DOC < prev   
Text File  |  1993-02-12  |  7KB  |  178 lines

  1.                              ****  Rekey  ****
  2.                            
  3.                   Command Line Recall/Function Key Programmer
  4.                         Version 2.0 - by Robert Palmer
  5.   ========================================================================
  6.  
  7. WHAT IS Rekey?
  8. ------------
  9.  
  10. Rekey is a program designed to help you at the DOS prompt. It installs
  11. in memory as a TSR program, allowing you to perform the following 
  12. functions:
  13.  
  14. 1. Edit commands you type on the command line.
  15. 2. Recall previous commands with the touch of a cursor key.
  16. 3. Select from a list of past commands from a window.
  17. 4. Enter commonly used commands with a single function key.
  18. 5. Assign your own commands to a function key.
  19. 6. Customize the function key commands and save them permanently.
  20.  
  21. Once you start using Rekey, you'll wonder how you ever got along 
  22. without it.
  23.  
  24. INSTALLING Rekey
  25. ----------------
  26.  
  27. Install Rekey by simply copying Rekey.COM to your DOS boot disk or to
  28. your hard disk.  On a hard disk, copy the program to the root
  29. directory, or to a directory included in the PATH statement in your
  30. AUTOEXEC.BAT file.
  31.  
  32. To use the program, simply enter the command: Rekey <Enter> at the DOS
  33. prompt.  You can add this command to your AUTOEXEC.BAT file to 
  34. automatically load Rekey when you boot up.
  35.  
  36. COMPATIBILITY WITH OTHER UTILITIES
  37. ----------------------------------
  38.  
  39. Rekey uses some DOS interrupts and can clash with other
  40. memory-resident utilities, especially keyboard enhancers such as
  41. SMARTKEY. If you load it before such utilities, there shouldn't be any
  42. problem.
  43.  
  44.  
  45. COPYRIGHT, ETC
  46. --------------
  47.  
  48. Rekey is SHARWARE and the source code will remain the property of Robert Palmer
  49. This Version can be used free for 10 days, then you must register by
  50. sending $5.00 to
  51.  
  52.                     Robert Palmer
  53.                     P.O. BOX 173
  54.                     East Meridith, NY 13806
  55.  
  56. (607)746-7874 Voice
  57.  
  58. DISTRIBUTION
  59. -----------
  60. You may distribute Rekey freely and unmodified and complete with the files
  61.  
  62. REKEY.COM Main program
  63. REKEY.DOC Program documentation
  64.  
  65.  
  66. COMMANDS
  67. --------
  68.  
  69. Note: Rekey is only active at the DOS prompt.
  70.  
  71. Windows  - Some notes about how windows are controlled.
  72.          . When the window is opened and the command Rekey is
  73.            showing, the current command is highlighted.
  74.          . Rekey only opens a window if PGUP or PGDN is pressed.
  75.            This saves having windows flashing around the screen
  76.            when you know where the command you want is.
  77.          . If a window is displayed (using PGUP or PGDN) and the
  78.            other key is pressed (PGDN or PGUP respectively) then
  79.            the window content is swapped.
  80.          . Although up to 80 characters of commands are stored, to
  81.            save space on the screen, only the first 32 characters
  82.            of commands are displayed in the window.
  83.  
  84. Cursor Pad Keys
  85.  
  86. Up       - Select the preceding command and display it at the
  87.            DOS prompt. If the window is open, select the correct
  88.            command list to display and highlight the command.
  89.            Press <Enter> to carry out the highlighted command.
  90.  
  91. Down     - Select the next command and display it at the DOS
  92.            prompt. If the window is open, select the correct
  93.            command list to display and highlight the command.
  94.  
  95. PGUP     - Open a window and display the command Rekey.
  96.  
  97. PGDN     - Open a window and display the commands for the
  98.            function keys. Several useful commands are
  99.            pre-programmed, but can be changed to suit
  100.            your needs. To execute the command, press the
  101.            appropriate function key.
  102.  
  103. HOME     - Move the cursor to the left of the command line.
  104.  
  105. END      - Move the cursor to the right of the command line.
  106.  
  107. DEL      - Delete the character at the cursor.
  108.  
  109. INS      - Toggle insert mode. Insert on is indicated by a block-
  110.            shaped cursor
  111.  
  112. Backspace- Delete the character to the left of the cursor
  113.  
  114. ESC      - Clear the command line and close the window.
  115.  
  116. TAB      - Delete the currently highlighted command from the Rekey.
  117.  
  118. Fn       - Issue the command associated with that function key.
  119.  
  120. Shift-Fn   You can't issue the command associated with a function
  121.            key using the highlight bar - you must press the
  122.            function key. The function keys that can be programmed
  123.            in this way are F1 to F10 and Shift-F1 to Shift-F5.
  124.  
  125. Ctrl-Fn  - Copy the current command to this function key. Ctrl-F1
  126.            to Ctrl-F10 copy to the corresponding function key,
  127.            Alt-F1 to Alt-F5 copy to Shift-F1 to Shift-F5
  128.            respectively. If Rekey is currently in insert mode (i.e.,
  129.            you pressed INS and the block cursor is showing), then NO
  130.            carriage return is added to the end. This means that when
  131.            you use that function key you can add some more to the end
  132.            before pressing Return/Enter. If insert mode is off, then
  133.            a carriage return is added to the end and the command will
  134.            be executed as soon as you press the function key.
  135.  
  136. Ctrl-END - Modify Rekey.COM by writing the current (i.e. in-memory)
  137.            definitions of the function keys to Rekey.COM. The memory
  138.            copy of Rekey expects Rekey.COM to be located in the
  139.            current drive and directory. If it isn't, you'll get a
  140.            cryptic error message on the command line (it isn't placed
  141.            in the DOS buffer so just type over the error message).
  142.  
  143. ^        - The caret (^) can be used to concatenate several commands on one
  144.            line; for example CD \WS^WS^CD \  changes to the WS directory, 
  145.            runs WS, then returns to the root directory. This command can be
  146.            used to replace small batch files.
  147.  
  148. Programming Function Keys and Saving to Rekey
  149. --------------------------------------------
  150.  
  151. Example 1
  152. --------
  153. run REKEY
  154. at the C: prompt type the command that you want saved
  155. C:\>dir/p then press return when the C: prompt returns press
  156. CTRL and F1 then CTRL and END the command DIR/P will be saved to REKEY
  157. as F1
  158.  
  159. Example 2
  160. --------
  161. C:\> cd\pctools^desktop ENTER
  162. it will change directory to PCTOOLS and run DESKTOP 
  163. after exiting DESKTOP press CTRL and F2 then CTRL and END
  164. CD\PCTOOLS^DESKTOP will be saved as F2
  165.  
  166. I know it seems alittle harder doing it this way but it will insure no
  167. that no errors in saving the functions etc.
  168. Updates
  169. ------ 
  170. 09 Febuary 1993
  171.  
  172. Problem with window not poping up on some 286+ Computers with 
  173. VGA Graphics fixed, I hope!
  174.  
  175. Rekey.DOC 
  176.  
  177.  
  178.